home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- end
-
- on OffsetStage
- stageHeight = the stageBottom - the stageTop
- stageWidth = the stageRight - the stageLeft
- monitorHeight = getAt(getAt(the desktopRectList, 1), 4)
- monitorWidth = getAt(getAt(the desktopRectList, 1), 3)
- monitorDifference = (monitorWidth + 0.0) / (monitorHeight + 0.0)
- if monitorDifference > 2 then
- monitorWidth = monitorWidth / 2
- else
- nothing()
- end if
- centerHeight = (monitorHeight / 2) - 375
- centerWidth = (monitorWidth / 2) - 465
- (the stage).rect = rect(centerWidth, centerHeight, centerWidth + stageWidth, centerHeight + stageHeight)
- end
-